Zero1000

Pandas

01: 導入
1: Series



1.

	
% python ↩︎
>>> import pandas as pd

>>> ary=[2,3,4]

>>> print (ary)
[2, 3, 4]



>>> a1=pd.Series(ary)
>>> print (a1)
0    2
1    3
2    4
dtype: int64



>>> print (ary[2])
4
>>> print (a1[2])
4